Finds items containing any of the specified key values.

Namespace:  C1.LiveLinq.Indexing.Search
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
IndexQuery<T, TKey> FindKeys(
	IEnumerable<TKey> keys,
	Order order
)
Visual Basic
Function FindKeys ( _
	keys As IEnumerable(Of TKey), _
	order As Order _
) As IndexQuery(Of T, TKey)

Parameters

keys
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'TKey>)>)>
The key values to search for.
order
Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).

Return Value

An object enumerating all items whose key values belong to the specified key value collection.

See Also